Uses of Class
org.eclipse.vtp.framework.interactions.voice.vxml.Grammar

Packages that use Grammar
org.eclipse.vtp.framework.interactions.voice.vxml   
 

Uses of Grammar in org.eclipse.vtp.framework.interactions.voice.vxml
 

Subclasses of Grammar in org.eclipse.vtp.framework.interactions.voice.vxml
 class ExternalGrammar
          The ExternalGrammar class represents the <grammar> VXML element with a reference to an external grammar file.
 class InlineGrammar
          The InlineGrammar class represents the <grammar> VXML element with the grammar structure embedded as child elements.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml that return Grammar
 Grammar[] Field.getGrammar()
          Returns the DTMF grammar to apply to the caller's input.
 Grammar Choice.getGrammar()
          Returns the grammar that describes what input selects this choice.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type Grammar
 void Field.addGrammar(Grammar grammar)
          Specifies the DTMF grammar to match the caller's entered digits against.
 void Choice.setGrammar(Grammar grammar)
          Sets the grammar that describes what input selects this choice.
 

Constructors in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type Grammar
Choice(java.lang.String targetURI, Grammar grammar)
          Creates a new instance of the Choice element.
Choice(java.lang.String targetURI, java.lang.String dtmf, Grammar grammar)
          Creates a new instance of Choice element with the specified targetURI and grammars, but the output is left initialized to null.
Choice(java.lang.String targetURI, java.lang.String dtmf, Output output, Grammar grammar)
          Creates a new instance of Choice element with the specified targetURI, grammars, and output.